home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / DEMOCIAL / DEMOQUT1.LZH / INSTALL.BAT < prev   
DOS Batch File  |  1990-01-05  |  2KB  |  63 lines

  1. echo off
  2. cls
  3. echo           QUATTRO PRO Demo Installation
  4. echo           -----------------------------
  5. echo           Make sure that your Demo
  6. echo           Disk 1 is in disk drive A
  7. echo           -----------------------------
  8. echo           This INSTALL program will create 
  9. echo           a directory called C:\QPDEMO.
  10. echo           1.5 MB of free disk space on 
  11. echo           your C: drive is required for
  12. echo           the installation process.  If you
  13. echo           wish to quit at this time, please
  14. echo           press [Ctrl] [C] or [CTRL] [BREAK].
  15. echo                                                            
  16. pause
  17. free C: 1500000
  18. if errorlevel 1 goto nofree
  19. c:
  20. cd \
  21. md QPDEMO > nul
  22. cd QPDEMO > nul
  23. copy a:DISK1 >nul
  24. copy a:demo.bat c: >nul
  25. echo  
  26. echo           Please insert the QUATTRO PRO Demo 
  27. echo           Disk 2 into drive A:.  Then press any
  28. echo           key to continue installation.
  29. pause
  30. :two
  31. if exist a:DISK1 goto pleasei
  32. copy a:disk2/b+disk1/b qp1214us.exe >nul
  33. erase disk? >nul
  34. cls
  35. echo  
  36. echo           You have successfully installed
  37. echo           the QUATTRO PRO Demo.
  38. echo           Type DEMO and press the 
  39. echo           ENTER key to begin.
  40. goto exit
  41. :nofree
  42. cls
  43. echo  
  44. echo           We are sorry, but your hard disk drive
  45. echo           does not have enough space to copy the
  46. echo           QUATTRO PRO Demo files.
  47. echo  
  48. echo           Please remove any unnecessary files
  49. echo           and directories to create at least 1.5MB
  50. echo           of free disk space.  You can then repeat
  51. echo           the demo installation process.
  52. goto exit
  53. :pleasei
  54. echo           Please insert Demo Disk 2 in drive A:
  55. pause
  56. goto two
  57. :wrongd
  58. cls
  59. echo           You used Disk 2 to install the QUATTRO PRO demo.
  60. echo           Please insert Disk 1, type INSTALL then press 
  61. echo           the ENTER key.
  62. :exit
  63.